home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing.plaf.basic;
-
- import java.awt.event.FocusEvent;
- import java.awt.event.FocusListener;
-
- class BasicComboBoxUI$ComboBoxFocusListener implements FocusListener {
- // $FF: synthetic field
- BasicComboBoxUI this$0;
-
- public void focusGained(FocusEvent e) {
- this.this$0.comboBox.repaint();
- }
-
- public void focusLost(FocusEvent e) {
- if (!e.isTemporary()) {
- this.this$0.popup.hide();
- }
-
- this.this$0.comboBox.repaint();
- }
-
- // $FF: synthetic method
- BasicComboBoxUI$ComboBoxFocusListener(BasicComboBoxUI this$0) {
- this.this$0 = this$0;
- }
- }
-